home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / imengv3.41p2.lha / ImEngV3.41p2 / Extra / ADPro / Install < prev    next >
Text File  |  1997-01-09  |  835b  |  38 lines

  1. ; Install ADPro support scripts.
  2. ; © 1996 Simon Edwards
  3. ; This script installs some support scripts for ADPro
  4.  
  5. (transcript "Installing...")
  6.  
  7. (message  (cat    "\nThis installs some support scripts for "
  8.             "using ADPro 2.5 and IE 3.0 together.\n"
  9.             "The scripts will be installed in your "
  10.             "ADPro:Commands2/ directory and in your "
  11.             "IE:ARexx/ directory."
  12.             ))
  13.  
  14. (working "Installing ADPro scripts...")
  15.  
  16. (copyfiles
  17.     (prompt "")
  18.     (help @copyfiles-help)
  19.     (files)
  20.     (pattern "#?.adpro")
  21.     (source (pathonly @icon))
  22.     (dest "ADPro:Commands2")
  23. )
  24.  
  25. (copyfiles
  26.     (prompt "")
  27.     (help @copyfiles-help)
  28.     (files)
  29.     (pattern "#?.rexx")
  30.     (source (pathonly @icon))
  31.     (dest "IE:Arexx")
  32. )
  33.  
  34. (exit (cat
  35.     "Support scripts for ADPro have been installed in your "
  36.     "ADPro:Commands2 directory.  See the ReadMe file in "
  37.     "this directory for more information."))
  38.